home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19960209-19960425 / 000143_news@columbia.edu _Mon Mar 4 23:56:54 1996.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Return-Path: news@columbia.edu
  2. Received: from apakabar.cc.columbia.edu (apakabar.cc.columbia.edu [128.59.35.159]) by watsun.cc.columbia.edu (8.7.3/8.7.3) with ESMTP id XAA19482 for <kermit.misc@watsun>; Mon, 4 Mar 1996 23:56:53 -0500 (EST)
  3. Received: (from news@localhost) by apakabar.cc.columbia.edu (8.7.3/8.7.3) id XAA09852 for kermit.misc@watsun; Mon, 4 Mar 1996 23:56:52 -0500 (EST)
  4. Path: news.columbia.edu!panix!imci5!pull-feed.internetmci.com!news.internetMCI.com!newsfeed.internetmci.com!howland.reston.ans.net!agate!dog.ee.lbl.gov!news.cs.utah.edu!cc.usu.edu!jrd
  5. From: jrd@cc.usu.edu (Joe Doupnik)
  6. Newsgroups: comp.protocols.kermit.misc
  7. Subject: Re: Another set key problem
  8. Message-ID: <1996Mar4.095410.75751@cc.usu.edu>
  9. Date: 4 Mar 96 09:54:10 MDT
  10. References: <4h2jdu$d2s@uwm.edu> <4h76q0$798@gateway.dircsa.org.au> <4h7jk4$5ls@uwm.edu>
  11. Organization: Utah State University
  12. Lines: 17
  13.  
  14. In article <4h7jk4$5ls@uwm.edu>, hseaver@alpha1.csd.uwm.edu (Harmon F Seaver) writes:
  15. > Arthur Marsh (arthur@gateway.dircsa.org.au) wrote:
  16. > : I did a show key on MS-Kermit 3.14 hit enter then the key marked <- at the
  17. > : top right hand side of the main keyboard cluster. This showed me that the
  18. > : key has a scancode of 270.
  19. >     Right, except that it's already been reset to \127, and I need a
  20. > "destructive backspace", not just a backspace. \127 acts as a delete key,
  21. > and \8 acts as a backspace, but doesn't delete anything. 
  22. -----------
  23.     Destructive (or not) backspace is a function of the remote host,
  24. not MS-DOS Kermit. The remote host has to send bytes commanding the terminal
  25. emulator to move its cursor, to write or erase a space, and to reposition
  26. the cursor. You'll need to find out what your host wants, typically either
  27. DEL (\127) or BS (\8). If it's Unix then try  stty -a  to see the current
  28. settings, and  man stty  to read more about the subject.
  29.     Joe D.